home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue28 / tiptrix / LISTING5.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-11-10  |  1.6 KB  |  81 lines

  1. object frmMain: TfrmMain
  2.   Left = 535
  3.   Top = 143
  4.   Width = 435
  5.   Height = 378
  6.   Caption = 'Tip: Bitmap on to Groupbox'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -13
  10.   Font.Name = 'System'
  11.   Font.Style = []
  12.   Position = poScreenCenter
  13.   Scaled = False
  14.   PixelsPerInch = 96
  15.   TextHeight = 16
  16.   object Image1: TImage
  17.     Left = 240
  18.     Top = 24
  19.     Width = 153
  20.     Height = 139
  21.   end
  22.   object GroupBox1: TGroupBox
  23.     Left = 248
  24.     Top = 188
  25.     Width = 153
  26.     Height = 139
  27.     Caption = 'GroupBox1'
  28.     TabOrder = 0
  29.     object CheckBox1: TCheckBox
  30.       Left = 24
  31.       Top = 40
  32.       Width = 97
  33.       Height = 17
  34.       Caption = 'CheckBox1'
  35.       TabOrder = 0
  36.     end
  37.     object RadioButton1: TRadioButton
  38.       Left = 16
  39.       Top = 80
  40.       Width = 113
  41.       Height = 17
  42.       Caption = 'RadioButton1'
  43.       TabOrder = 1
  44.     end
  45.   end
  46.   object Button1: TButton
  47.     Left = 16
  48.     Top = 296
  49.     Width = 193
  50.     Height = 33
  51.     Caption = 'Add picture to groupbox'
  52.     TabOrder = 1
  53.     OnClick = Button1Click
  54.   end
  55.   object ListBox1: TListBox
  56.     Left = 16
  57.     Top = 8
  58.     Width = 129
  59.     Height = 249
  60.     ItemHeight = 16
  61.     Items.Strings = (
  62.       'cmBlackness'
  63.       'cmDstInvert'
  64.       'cmMergeCopy'
  65.       'cmMergePaint'
  66.       'cmNotSrcCopy'
  67.       'cmNotSrcErase'
  68.       'cmPatCopy'
  69.       'cmPatInvert'
  70.       'cmPatPaint'
  71.       'cmSrcAnd'
  72.       'cmSrcCopy'
  73.       'cmSrcErase'
  74.       'cmSrcInvert'
  75.       'cmSrcPaint'
  76.       'cmWhiteness')
  77.     TabOrder = 2
  78.     OnClick = ListBox1Click
  79.   end
  80. end
  81.